import Footer from "@/components/Footer"; import { FC, PropsWithChildren } from "react"; type Props = {}; const Layout: FC> = (props) => { const { children } = props; return ( <>
{children}